a {
  text-decoration: none;
}
/*header*/
_::-webkit-full-page-media,
_:future,
:root .css_selector {
  position: absolute;
  top: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::before,
::after {
  box-sizing: inherit;
}
button {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}
/* ハンバーガーボタンのスタイリング */
.btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 32px;
  right: 16px;
  /* 最前面に */
  z-index: 10;
  /* ボタンの大きさ  */
  width: 48px;
  height: 48px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  /* バーガー線の位置基準として設定 */
  position: relative;
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #7e7eb9;
  transition: 0.2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #7e7eb9;
  transition: 0.5s;
}
.btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-16px);
}
.btn-line::after {
  /* 下の線の位置 */
  transform: translateY(16px);
}
/***** メニューオープン時 *****/
.btn-line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}
.btn-line.open::before,
.btn-line.open::after {
  content: "";
  background-color: #fff;
  transition: 0.2s;
}
.btn-line.open::before {
  /* 上の線を傾ける */
  transform: rotate(45deg);
}
.btn-line.open::after {
  /* 上の線を傾ける */
  transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
  /* メニューを縦に */
  display: flex;
  flex-direction: column;
  position: fixed;
  /* メニューの位置マイナス指定で画面外に */
  right: -70%;
  width: 70%;
  height: 100vh;
  background-color: #171778;
  color: #fff;
  transition: 0.3s;
}
.menu a {
  /* メニューテキスト位置をリスト内中心に */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 20px;
  color: #fff;
}
.menu a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
  right: 0;
}
.menu-list {
  letter-spacing: 0.1em;
}
/*header*/
/*footer*/
#footer04 {
  background: #171778;
  margin-top: 50px;
}
#footer04 .cont {
  padding: 50px 0;
}
#footer04 .cont-item {
  display: block;
  width: 33%;
}
#footer04 .nav a {
  display: block;
  color: #fff;
  font-family: "メイリオ", "Meiryo", sans-serif;
}
#footer04 .nav .ttl {
  display: block;
  margin: 25px 0 25px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  font-family: "メイリオ", "Meiryo", sans-serif;
}
#footer04 .cont-item .nav ul li a {
  font-weight: normal;
}
#footer04 .nav .ttl:first-child {
  margin-top: 0;
}
#footer04 .nav .ttl + .ttl {
  margin-top: 10px;
}
#footer04 .nav ul {
  text-align: center;
  display: block;
  font-size: 20px;
  line-height: 2;
  padding: 0;
}
#footer04 .nav li {
  display: block;
  font-size: 15px;
  line-height: 2;
}
#footer04 .nav li:first-child {
  margin-top: 0;
}
#footer04 .nav li ul {
  margin: 0 0 0 2em;
}
#footer04 .nav li li {
  position: relative;
}
#footer04 .nav li li:before {
  position: absolute;
  top: 50%;
  left: -10px;
  content: "";
  display: block;
  width: 4px;
  height: 1px;
  background-color: #fff;
}
#footer04 .company {
  display: block;
  margin-top: 62px;
}
#footer04 .logo img {
  width: 120px;
}
#footer04 .address {
  display: block;
  margin: 28px 0 0;
  font-size: 12px;
  line-height: 2;
  color: #fff;
}
.footer_company {
  display: flex;
}
.company_name {
  color: #fff;
  text-align: center;
  font-family: "メイリオ", "Meiryo", sans-serif;
  padding-bottom: 50px;
  float: left;
  width: 100%;
}
.tel {
  color: #fff;
  text-align: center;
  font-family: "メイリオ", "Meiryo", sans-serif;
  padding-bottom: 50px;
  float: left;
  width: 100%;
}
.copyright {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-family: "メイリオ", "Meiryo", sans-serif;
  padding-bottom: 50px;
}
.outer-block {
  text-align: center;
  margin: 0 auto;
}
/*/footer*/
/*index*/
.top_container {
  margin-bottom: 50px;
  text-align: center;
  margin-bottom: 40px;
}
.top_movie {
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0 0 0;
}
.sitenavi {
  max-width: 1340px;
  margin: 0 auto;
  padding: 40px 30px;
}
.sitenavi_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -50px;
}
.navi-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 48%;
  margin-bottom: 50px;
}
/*/indesx*/
/*work*/
.work_main {
  padding: 80px 0;
}
.work_main_container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 5%;
}
.title {
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 70px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #171778;
}
.work_container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 48%;
  margin-bottom: 50px;
}
.work_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -50px;
}
.work_name {
  font-size: 1.3rem;
  text-align: center;
}
.work_inner01 {
  height: auto;
  margin-right: 20px;
}
.work_inner01 img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}
.work_text {
  text-align: center;
  margin-top: 20px;
}
.work_inner02 {
  width: 100%;
}
.work_inner02 h4 {
  letter-spacing: 0.1em;
}
.work_container p {
  font-size: 0.9em;
  line-height: 1.2em;
}
/*/work*/
/*company*/
.company {
  padding: 80px 0;
}
.company_logo {
  margin: 0 auto;
  padding: 5%;
  width: 100%;
  max-height: 1340px;
  max-width: 1080px;
}
.company_logo img {
  max-height: 1340px;
}
.kaisha {
  width: 95%;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.kaisha th,
.kaisha td {
  border: 1px solid #ccc;
  padding: 20px;
  color: #333;
}

.kaisha th {
  font-weight: bold;
  background-color: #dedede;
  vertical-align: top;
}

.kaisha p {
  padding: 5px;
}

.map {
  align-items: center;
  margin-bottom: 80px;
}

.map h3{
  text-align: center;

}

.map-container {
  margin: 0 auto;
  margin-top: 30px;
  width: 95%;
  height: 400px;
}

.sd_icons{
  width: 1100px;
  margin: 0 auto;
}

.sd_flex{
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sd_flex img{
  width: 100%;
  max-width: 200px;
}

@media screen and (max-width: 767px) {
  .kaisha,
  .kaisha tr,
  .kaisha td,
  .kaisha th {
    display: block;
  }
  .kaisha th {
    width: auto;
  }

  .sd_icons{
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

.sd_flex{
  display: grid;
grid-template-columns: 1fr 1fr;
  gap: 10px;
}

  .sd_flex img{
  width: 100%;
  max-width: 100%;
}

}


@media screen and (max-width: 830px) {
  .sd_icons{
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

.sd_flex{
  display: grid;
grid-template-columns: 1fr 1fr;
  gap: 10px;
}

  .sd_flex img{
  width: 100%;
  max-width: 100%;
}



}
/*/company*/
/*faq*/
.faq {
  padding: 80px 0 40px 0;
}
.faq_text {
  font-size: 1.2rem;
  text-align: center;
  padding: 0 40px 40px 40px;
  color: #333;
}
.faq_text p {
  padding: 5px;
}
.faq_top {
  padding: 30px;
  width: 60%;
  margin: 0 auto;
}

.faq_info {
  font-size: 1.5rem;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
  color: #171778;
}
.faq_info p {
  margin-top: 10px;
}
.faq_info_URL {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
  margin-top: 50px;
  color: #fff;
  background-color: #171778;
  padding: 30px;
  margin: 20px 2em 0 2em;
}
a:link {
  color: #fff;
}
a:visited {
  color: #fff;
}
/*/faq*/
/*smartphone*/
@media screen and (min-width: 0px) and (max-width: 849px) {
  _::-webkit-full-page-media,
  _:future,
  :root .css_selector {
    position: absolute;
    top: 15px;
    text-align: center;
  }
  /*index*/
  .top_movie {
    width: 100%;
    padding: 50px 0 0 0;
  }
  .sitenavi_container {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .navi-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
  }
  /*/index*/
  /*company*/
  .company {
    padding-bottom: 0;
  }
  .kaisha {
    width: 80%;
  }
  .company_logo {
    padding: 20px;
  }
  /*/company*/
  /*work*/
  .work_container {
    display: block;
  }
  .work_inner01 {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .work_name {
    font-size: 1rem;
  }
  .work_container p {
    font-size: 0.8em;
  }
  /*/work*/
  /*faq*/
  .faq_text {
    font-size: 1rem;
  }
  .faq_top {
    padding: 30px;
    width: 100%;
    margin: 0 auto;
  }
  .faq_info {
    font-size: 0.8rem;
    font-weight: bold;
  }
  .faq_info_URL {
    font-size: 1rem;
    font-weight: bold;
  }
  /*/faq*/
}
/*/smartphone*/
/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 850px) {
  .btn {
    display: none;
  }
  .menu {
    /* メニューを横に */
    display: flex;
    flex-direction: row;
    position: static;
    top: 0;
    right: 0;
    width: 100%;
    height: 60px;
  }
  .work_container {
    font-size: 1rem;
  }
  .work_inner01 img {
    max-width: 400px;
    height: auto;
    vertical-align: bottom;
    border-style: none;
  }
}
/*/tablet*/
